All Questions
2 questions
5votes
3answers
1kviews
C++ choose between runtime and compile time implementation functions
I wrote a small wrapper function to choose between runtime (std) sqrt and a constexpr version, as a continuation of the vector class I published here earlier: C++ ...
8votes
2answers
2kviews
Chebyshev polynomial evaluation class using C++1z fold expressions
I've been messing around with templates in C++14 and C++1z recently, and since I have somewhat of an obsession with optimization (and since my field of work relates to it) I decided to try to ...